home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / rhmtd.arc / RHM.REM < prev    next >
Text File  |  1991-11-11  |  6KB  |  170 lines

  1. ;
  2. ;
  3. ; The first part of this file offers assistance in understanding how to define
  4. ; your gateway so that Right Hand Man will prompt the user for your MHS
  5. ; gateway's needed paramteres.
  6. ;
  7. ; Note that any line in this file that has a semicolon (;) in the first
  8. ; colomn is ignored by Right Hand Man and as is seen as comments.  There
  9. ; are a number of default gateways that have been defined for you.  If you
  10. ; don't use ALCOM or M-Bridge gateway software, simply delete the
  11. ; appropriate lines or comment those lines out with a semicolon.
  12. ; If you have an ALCOM fax gateway, we have already provided you with your
  13. ; first custom routing address that has FUTURUS' fax number
  14. ;
  15. ;
  16. ;
  17. ;
  18. ;
  19. ;
  20. ;
  21. ;                              PART 1
  22. ;
  23. ; The following is the syntax for adding your MHS gateway to
  24. ; this script file:
  25. ;
  26. ;
  27. ;         Description,hot-key_name:MHS routing syntax
  28. ;
  29. ;
  30. ;
  31. ; "Description" is the text that appears in the Description field in
  32. ;  Right Hand Man when a selection is made.  It is recommended that the
  33. ;  description not exceed 42 characters in length.
  34. ;
  35. ; "hot-key_name" is the text that appears in the the list box that the user
  36. ;  can hot-key to. It must not exceed 15 characters in length.
  37. ;
  38. ; "MHS syntax" is the routing syntax for your particular gateway.  Since the
  39. ;  routing syntax will have certain parts that carry variable information,
  40. ;  you would specify that part with a field length and prompt.
  41. ;
  42. ;  eg.
  43. ;    To send to an ALCOM fax gateway the line might read as follows:
  44. ;
  45. ;
  46. ;    Fax Machine,FAX:-@EASYGATE {NAME: "15,Full name" /FAX: "24,Fax number"}
  47. ;
  48. ;
  49. ;
  50. ;   What this line says is that the description is Fax Machine, the hot-key
  51. ;   name is FAX, the variable part that needs a personal name to address the
  52. ;   fax to has a 15 character field limit and a prompt that asks the user for
  53. ;   the full name. Another variable part of the routing info defines a field
  54. ;   length of 24 characters with a prompt for the fax number.  When Right
  55. ;   Hand Man reads this line it will display the following on the user's
  56. ;   screen:
  57. ;
  58. ;     Full name: _______________
  59. ;     Fax number: ________________________
  60. ;
  61. ;   Say that the user typed in "John Gault" as the full name and "555-2519" as
  62. ;   the fax number.  Right Hand Man would then take the responses and build
  63. ;   an in-memory MHS address that would read as follows:
  64. ;
  65. ;    -@EASYGATE {NAME: John Gault /FAX: 555-3487}
  66. ;
  67. ;   This is all that MHS needs to deliver to the Alcom fax gateway.
  68. ;
  69. ;   Right Hand Man would then prompt the user as to whether or not he/she
  70. ;   wishes to add this entry to the address list.  If the response is yes,
  71. ;   then Right Hand Man will then prompt the user for a username to associate
  72. ;   this entry with and a description for the new entry.
  73. ;
  74. ;   The prompts would be as follows:
  75. ;
  76. ;   Enter the keyword: _______________
  77. ;   Enter the description: _______________________________
  78. ;
  79. ;   Say that the user typed in "JOHNG" as the keyword and
  80. ;   "Mr. John Gault" as the description.  Right Hand Man would then append
  81. ;   a new entry to the script file that would appear as follows:
  82. ;
  83. ;
  84. ;   JOHNG,Mr. John Gault:-@EASYGATE {NAME: John Gault /FAX: 555-3487}
  85. ;
  86. ;
  87. ;  Note how the new entry looks similar to the in-memory MHS address that was
  88. ;  mentioned above except for the addition of a description field and hot-key
  89. ;  username field.
  90. ;
  91. ;
  92. ;
  93. ;        NOTE: You must know your particular MHS gateway's routing
  94. ;        syntax in order for Right Hand Man to properly read this script
  95. ;        file. Refer to your gateway's manual for this.
  96. ;
  97. ;
  98. ;
  99. ;
  100. ;
  101. ;
  102. ;                               PART 2
  103. ;
  104. ;
  105. ;
  106. ; The following is a list of gateways that will appear in Right Hand Man's
  107. ; List box when sending to a remote site.  The individual gateway
  108. ; parameters must be specified on a single line.  Right Hand Man will identify
  109. ; a given line as a defined gateway by the existence of quotation marks in
  110. ; that line.  Any other lines would be considered as a remote recipient
  111. ; with constants in the MHS fields instead of variables. When a user adds
  112. ; a new entry into the list of remote email recipients, the entry is placed
  113. ; just after the defined gateways in this script file.
  114. ;
  115. ;
  116. ;
  117. ;
  118. ; [Gateway routing syntax and prompts]
  119. ;
  120. ;
  121. ; This sends to a Compuserve account that is accessed through the M-Bridge
  122. ; gateway software
  123. ;
  124. *CSERV,Send to Compuserve account:mci@MCIMAIL {EMS:Compuserve|MBX:"11,Compuserve account"}
  125. ;
  126. ;
  127. ; This sends to a fax machine via the Alcom Fax Gateway software
  128. ;
  129. *FAX-ALCOM,Fax delivery of email via ALCOM:-@EASYGATE {"Recipient's full name"/FAX:"24,Fax number"}
  130. ;
  131. ;
  132. ; This sends to a MCI Mail account via M-Bridge gateway software
  133. ;
  134. *MCIMAIL,Send to MCI Mail account:mci@MCIMAIL {NAME:"20,MCI Mail account"}
  135. ;
  136. ;
  137. ; This sends to an MHS account using the MHS host software
  138. ;
  139. *MHS,Message Handling Service:"8,Enter user name"@"8,Enter host name"
  140. ;
  141. ;
  142. ; This send to any number of remote email systems through the M-Bridge software
  143. ;
  144. *REMS,Remote email systems:mci@MCIMAIL {NAME:"15,Recipient's full name"|EMS:"10,Remote email system name"|MBX:"15,Remote email account"}
  145. ;
  146. ;
  147. ; This sends to a Telex machine via the M-Bridge software
  148. ;
  149. *TELEX,Send to Telex Machine:mci@MCIMAIL {NAME:"15,Recipient's full name"|TELEX:"24,Telex number"}
  150.  
  151. ; Send email via the postal service and MCIMAIL (uses the M-Bridge gateway software)
  152. ;
  153. *POSTAL,Postal delivery of email:mci@MCIMAIL {PDS:"Enter the person's name"|"Enter the street address"|"Enter the City, State, Zipcode"}
  154. ;
  155. ;
  156. ;
  157. ;
  158. ; This sends to a fax machine via the M-Bridge gateway software
  159. ;
  160. *FAX-MCI,Fax delivery of email via MCI:mci@MCIMAIL { NAME:"Enter the full name"| FAX: "Enter the telephone number"}
  161. ;
  162. ;
  163. ;
  164. ;
  165. ;
  166. ; [Custom routing addresses]
  167. ;
  168. ;
  169. FUTURUS, Fax to FUTURUS via ALCOM:-@EASYGATE { Futurus Inc./FAX:1-504-837-3429}
  170.